home *** CD-ROM | disk | FTP | other *** search
/ Aminet 23 / Aminet 23 (1998)(GTI - Schatztruhe)[!][Feb 1998].iso / Aminet / text / edit / BlacksEditor.lha / BlacksEditor / Rexx / RemoveFormFeed.bed < prev    next >
Text File  |  1997-12-03  |  337b  |  28 lines

  1. /*
  2. ** $VER: RemoveFormFeed.bed 1.0 (18.6.95)
  3. **
  4. ** Remove all FormFeed from the document
  5. **
  6. ** Written by Mauro Fontana
  7. ** Modified by Marco Negri
  8. */
  9.  
  10. OPTIONS RESULTS
  11.  
  12. SetDisplayLock ON
  13. MoveSOF
  14.  
  15. SetStatusBar "Working..."
  16.  
  17. RecordMacro QUIET
  18. Find " "
  19. InsertLine
  20. Delete
  21. EndMacro
  22.  
  23. PlayMacro 0
  24.  
  25. MoveSOF
  26. SetDisplayLock OFF
  27. SetStatusBar "Done"
  28.